home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / snip9611.zip / UPDATE.H < prev    next >
C/C++ Source or Header  |  1996-11-24  |  356b  |  21 lines

  1. /* +++Date last modified: 02-Nov-1995 */
  2.  
  3. /*
  4. ** UPDATE.H - Header for UPDATE.C
  5. */
  6.  
  7. #ifndef UPDATE__H
  8. #define UPDATE__H
  9.  
  10. #include <io.h>
  11. #include <stdio.h>
  12. #include <string.h>
  13. #include <stdlib.h>
  14. #include "sniptype.h"
  15.  
  16. Boolean_T update_file(char *szFname, char *szOther);
  17.  
  18. #define ren2bak(x) update_file(x, NULL)
  19.  
  20. #endif /* UPDATE__H */
  21.